All Questions
54 questions
0votes
0answers
69views
Bootstrap not working locally in angular project
Earlier I have been using bootstrap 4 cdn in my angular project. But now I want to use bootstrap 4 from my local sytem. So I installed bootstrap in my angular project. I have been trying this since ...
0votes
1answer
183views
Dynamically change value in uib-tabset attribute
In my project I use ui.bootstrap.tabs. On md and lg screens tabs should appear vertically stacked, but on screens sm and xs I want to see them appear horizontally. All I need is to set value in ...
5votes
2answers
907views
Why do we need reactjs-bootstrap if there's easy way?
I've been developing web app using react or angular but I'm confused why people would use library like react-bootstrap (https://react-bootstrap.github.io/introduction.html) or Angular-bootstrap? ...
0votes
2answers
1kviews
Angular Bootstrap Tab Icons
Is there way way to use Font Awesome icons inside Angular Bootstrap Tab Headers? http://valor-software.com/ngx-bootstrap/#/tabs I am only seeing a string option? <tab index="0" heading="Info"> ...
4votes
2answers
4kviews
Is it possible to change angular bootstrap uib-dropdown templateUrl dynamically?
I want to change the uib-dropdown template dynamically when the user clicks one of its <li>, just like he could "navigate" within that dropdown. I tried to make it via templateUrl, but nor the ...
1vote
1answer
686views
Angular Bootstrap UI Modal - Access ID within ng-tempate script
Is there a way to access #title, #address, #category, #description, #latitude, and #longitude on the form below? I've been trying to use document.getElementById(id) but it's coming up as null each ...
2votes
1answer
3kviews
How to prevent page scroll to top when using Angular-bootstrap modal and window position:fixed workaround for ipad?
You may know, that there is a bug in bootstrap modals on some devices, that the page behind the modals scrolls instead of the modal (http://getbootstrap.com/getting-started/#support-fixed-position-...
0votes
1answer
93views
ng-init in uib-carousel -> height becomes 0px
After adding ng-init with images and unique id inside uib-carousel everything is equal to 0px (images, div's inside uib-carousel). Here is plunker <div uib-carousel active="active" ng-init="...
2votes
1answer
653views
angular-bootstrap progressbar progress shown is incorrect
I am running a serie of simulations on an external window, and each time a simulation is done I increment a progress value on the main window (everything happens through IPC communication). The whole ...
1vote
2answers
533views
AngularJS Bootstrap - Error in Console
I'm trying to set up $uibModal from AngularJS Bootstrap, however I get an error in console. More on that below. app.js: var app = angular.module('carApp', ['ui-bootstrap']); ctrl.js app.controller('...
-1votes
1answer
943views
Angular-bootstrap typeahead + ng-click/ng-focus
In my app I use angular-bootstrap typeahead component, this way: <input type="text" ng-model="selected" placeholder="Start typing to select an object" uib-typeahead="obj as obj.name for obj in ...
1vote
2answers
2kviews
Keyboard navigation on Angular uib-dropdown is not working
I'm using Angular Bootstrap 2.2.0 with Angular 1.5. The keyboard navigation doesn't work on UIB dropdowns even with the keyboard-nav option enabled. Here's my code: <div class="btn-group" ...
0votes
1answer
115views
Disambiguation: Angular, Bootstrap (css & js), angular.bootstrap, UI Bootstrap, and anything else I should know about Angular and Bootstrap
I recently started working on an Angular project that someone else started. I'm loving it, but am massively confused about Angular's relationship to Bootstrap. Especially because it seems like all the ...
1vote
0answers
266views
Angular UI Bootstrap Calendar Year Selector
Is there a way to configure the popup calendar widget such that the user can select the year from a dropdownlist? Kinda like this: It is not a requirement I am fond of, but a requirement I am stuck ...
1vote
0answers
975views
Angular bootstrap - unable to disable dropdown menu according to filtering result
I'm using Angular 1.5 and Angular Bootstrap. I have a uib-dropdown element with a list, and a custom filter. The items presented in the list are obviously filtered according to the custom filter, the ...